Answer:

Yes.

FOR Loops

Here is a program that does the same thing as the previous program, but uses a FOR loop to say "count up from zero to two."

' Counting Loop---using a FOR
'
FOR COUNT = 0 TO 2       'Statement 1
  PRINT COUNT            'Statement 2
NEXT COUNT               'Statement 3
END

Statement 1 does three things:

QUESTION 3:

What statement is in the body of the loop?